home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC-SIG: World of Games
/
PC-SIG World of Games (CDRM1080710) (1993).iso
/
ENT
/
DISK1073.ZIP
/
HELLO.BAT
< prev
next >
Wrap
DOS Batch File
|
1988-01-22
|
896b
|
30 lines
ECHO OFF
CLS
ECHO WELCOME TO CONRAD BUTTON'S GAME SERIES
ECHO.
ECHO HOW TO START RED PLANET
ECHO.
ECHO 1. Be sure the game disk is in drive A
ECHO 2. Type A: and press Enter
ECHO 3. Type REDPLAN and press Enter
ECHO.
ECHO If you are using a graphics monitor that only displays
ECHO one color you should use the M parameter when starting
ECHO the games (i.e. REDPLAN M).
ECHO.
ECHO NOTE: To print out the instructions for the games on your
ECHO printer restart this file by typing HELLO /P
IF .%1 == ./P GOTO PRINT
IF .%1 == ./p GOTO PRINT
GOTO END
:PRINT
ECHO.
ECHO BE SURE YOUR PRINTER IS ON!
PAUSE
ECHO.
ECHO Printing Document
TYPE A:HELLO.TXT >PRN
:END
ECHO.
PAUSE